home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbinst13 / vbwait.frm < prev    next >
Text File  |  1995-12-05  |  901b  |  35 lines

  1. VERSION 2.00
  2. Begin Form wait 
  3.    BorderStyle     =   1  'Fixed Single
  4.    ClientHeight    =   0
  5.    ClientLeft      =   2655
  6.    ClientTop       =   2715
  7.    ClientWidth     =   4335
  8.    ControlBox      =   0   'False
  9.    Height          =   405
  10.    Icon            =   0
  11.    Left            =   2595
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   0
  17.    ScaleMode       =   3  'Pixel
  18.    ScaleWidth      =   289
  19.    Top             =   2370
  20.    Width           =   4455
  21. End
  22.  
  23. Sub Form_Load ()
  24.     ' Center on the screen
  25.     '
  26.      Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
  27.     'Show Wait form
  28.     Screen.MousePointer = 11
  29.     Wait.caption = "Install Program Now Loading.....Wait..."
  30.     Wait.Show
  31.     install.Show
  32.     Screen.MousePointer = 0
  33. End Sub
  34.  
  35.